.flex-box-v {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    justify-content: center;
}


/*banner*/

.Banner-container {
    height:75vh;
    min-height: 600px;
    max-height: 1600px;
    width: 100%;
}

.banner-background {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.banner-slide {
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: hidden;
}

.banner-text {
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.banner-text h1 {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Oswald', sans-serif !important;
}

.banner-text h2 {
    position: relative;
    color: #1968c1;
	text-align:center;
	line-height:48px;
    font-size: 20px;
    font-weight: normal;
    font-family: arial;
	width:168px;
	height:48px;
	background:#fff;
	
}

.banner-text h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100px;
    background: #fff;
    z-index: 1;
}

.banner-text h2 span {
    font-size: 18px;
    display: inline-block;
    margin-top: 15px;
}

.banner-bg-ss {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.banner-text {
    z-index: 10;
}

.banner-text:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 400px;
    display: block;
    border: 10px solid rgba(255, 255, 255, 0.2);
    top: 4.5rem;
    margin-top: -200px;
    left: -6rem;
    display: none;
}

.small-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
}


/*.banner-warpper.swiper-wrapper {
transition-timing-function: cubic-bezier(0.75, 0.22, 0.25, 1);
}
.banner-warpper.swiper-wrapper .banner-background {
transition-timing-function: cubic-bezier(0.75, 0.22, 0.25, 1);
will-change: transform;
}*/

.banner-switch {
    position: absolute;
    z-index: 30;
    left: auto;
    top: 50%;
    height: 80px;
    right: 2rem;
    color: #fff;
    display: grid;
    margin-top: -25px;
    grid-template-columns: 1fr;
    width: auto;
    align-content: center;
    align-items: center;
    text-transform: uppercase;
}

.banner-switch>div>* {
    display: inline-block;
    vertical-align: middle;
}

.sL_icon {
    background-size: contain;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-switch>div>span {
    margin: 0 0.5rem;
    font-size: 0.825rem;
}

.banner-switch>div {
    margin: 0.3rem 2rem;
}

.banner-switch>div {
    cursor: pointer;
    transition: 0.5s;
}

.swiper-button-disabled {
    opacity: 0.4;
}

.Scroll-tip {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100px;
    color: #fff;
    text-align: center;
}

.Tipss {
    text-transform: uppercase;
    font-size: 0.825rem;
}

.tip_anim {
    display: inline-block;
    margin: 0.75rem 0;
    height: 30px;
}

.Tipss span {
    display: block;
}

.tip_anim span {
    display: inline-block;
    width: 1px;
    height: 100%;
    background: #fff;
    animation-name: scrollTip;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.82, 0.24, 0.25, 1);
}

.Banner-A1 {
    z-index: 1;
}

@keyframes scrollTip {
    0% {
        transform: scale(1, 0);
        transform-origin: top;
    }
    49% {
        transform: scale(1, 1);
        transform-origin: top;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }
}

.banner-background {
    transition: 1s 2.5s;
    transform: perspective(1000px) translate3d(0, 0, 100px);
}

.swiper-slide.banner-slide.swiper-slide-active .banner-background {
    transition: 5s 0s;
    transform: perspective(1000px) translate3d(0, 0, 0px);
}

.banner-text:before {
    transition-delay: 2s;
    transition-duration: 2s;
    transform: translate3d(-80px, 0, 0);
    opacity: 0;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text:before {
    transition-delay: 1.3s;
    transform: translate3d(0px, 0, 0);
    opacity: 1;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(1) {
    transition-delay: 0.5s;
    font-family: 'Oswald', sans-serif !important;
    font-size: 40px;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(2) {
    transition-delay: 0.7s;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(3) {
    transition-delay: 0.9s;
}

.banner-text * {
    transition-delay: transform 2s, opacity 0s;
    transition-duration: 2s;
    transform: translate3d(0, 80px, 0);
    opacity: 0;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text * {
    transform: translate3d(0, 0px, 0);
    opacity: 1;
}

@media screen and (max-width: 1600px) {
    .banner-text {
        max-width: 1000px;
        width: 80%;
    }
}

@media screen and (max-width: 1200px) {
    .banner-text:before {
        content: "";
        position: absolute;
        width: 300px;
        height: 400px;
        display: block;
        border: 10px solid rgba(255, 255, 255, 0.2);
        top: 4.5rem;
        margin-top: -200px;
        left: 50%;
        margin-left: -150px;
        display: none;
    }
    .banner-text h2:before {
        left: calc((100% - 100px)/2);
    }
    .banner-text {
        text-align: center;
    }
    .banner-text h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 769px) {
    .banner-switch {
        top: auto;
        bottom: 2rem;
        left: 5%;
        right: 5%;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .banner-text h2:before {
        left: calc((100% - 60px)/2);
        width: 60px;
    }
    .banner-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .banner-text h2 {
        font-size: 14px;
        line-height: 1.4;
    }
    .small-title {
        font-size: 2rem;
    }
    .banner-text:before {
        opacity: 0;
    }
    .Scroll-tip {
        bottom: 72px;
    }
}


/*banner*/


/* font */

@font-face {
    font-family: iconfont;
    src: url(../fonts/iconfont.eot?t=1596509594069);
    src: url(../fonts/iconfont.eot?t=1596509594069#iefix) format('embedded-opentype'), url(../fonts/iconfont.woff2?t=1596509594069#iefix) format('woff2'), url(../fonts/iconfont.woff?t=1596509594069) format('woff'), url(../fonts/iconfont.ttf?t=1596509594069) format('truetype'), url(../fonts/iconfont.svg?t=1596509594069#iconfont) format('svg')
}

.iconfont {
    font-family: iconfont!important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-weixin1:before {
    content: "\e6e7"
}

.icon-weixin:before {
    content: "\e6e8"
}

.icon-xiaochengxu2:before {
    content: "\e6e9"
}

.icon-xiaochengxu1:before {
    content: "\e6ea"
}

.icon-whatsapp1:before {
    content: "\e6e6"
}

.icon-whatsapp:before {
    content: "\ea07"
}

.icon-yuenanyu:before {
    content: "\e70c"
}

.icon-wuzibiekeyu:before {
    content: "\e70d"
}

.icon-wukelanyu:before {
    content: "\e70e"
}

.icon-tuerqiyu:before {
    content: "\e70f"
}

.icon-taiyu:before {
    content: "\e710"
}

.icon-tajikeyu:before {
    content: "\e711"
}

.icon-ruidianyu:before {
    content: "\e712"
}

.icon-xibanyayu:before {
    content: "\e713"
}

.icon-baieluosiyu:before {
    content: "\e714"
}

.icon-siluowenniyayu:before {
    content: "\e715"
}

.icon-siluofakeyu:before {
    content: "\e716"
}

.icon-eyu:before {
    content: "\e717"
}

.icon-luomaniyayu:before {
    content: "\e718"
}

.icon-putaoyayu:before {
    content: "\e719"
}

.icon-bolanyu:before {
    content: "\e71a"
}

.icon-bosiyu:before {
    content: "\e71b"
}

.icon-nuoweiyu:before {
    content: "\e71c"
}

.icon-niboeryu:before {
    content: "\e71d"
}

.icon-miandianyu:before {
    content: "\e71e"
}

.icon-mengyu:before {
    content: "\e71f"
}

.icon-maertayu:before {
    content: "\e720"
}

.icon-malaiyu:before {
    content: "\e721"
}

.icon-maqidunyu:before {
    content: "\e722"
}

.icon-lusenbaoyu:before {
    content: "\e723"
}

.icon-litaowanyu:before {
    content: "\e724"
}

.icon-latuoweiyayu:before {
    content: "\e725"
}

.icon-latuoweiyayu1:before {
    content: "\e726"
}

.icon-laozhuayu:before {
    content: "\e727"
}

.icon-jierjisikeerkeziyu:before {
    content: "\e728"
}

.icon-hanyu:before {
    content: "\e729"
}

.icon-yameiniya:before {
    content: "\e72a"
}

.icon-hasakeyu:before {
    content: "\e72b"
}

.icon-riyu:before {
    content: "\e72c"
}

.icon-yidaliyu:before {
    content: "\e72d"
}

.icon-aierlanyu:before {
    content: "\e72e"
}

.icon-yindunixiyayu:before {
    content: "\e730"
}

.icon-xiongyaliyu:before {
    content: "\e731"
}

.icon-yindiyu:before {
    content: "\e732"
}

.icon-xibolaiyu:before {
    content: "\e733"
}

.icon-xilayu:before {
    content: "\e734"
}

.icon-deyu:before {
    content: "\e735"
}

.icon-gelujiyayu:before {
    content: "\e737"
}

.icon-maoliyu:before {
    content: "\e738"
}

.icon-fayu:before {
    content: "\e739"
}

.icon-fenlanyu:before {
    content: "\e73a"
}

.icon-feilvbinyu:before {
    content: "\e73b"
}

.icon-aishaniyayu:before {
    content: "\e73c"
}

.icon-shijieyu:before {
    content: "\e73d"
}

.icon-helanyu:before {
    content: "\e73e"
}

.icon-danmaiyu:before {
    content: "\e73f"
}

.icon-jiekeyu:before {
    content: "\e740"
}

.icon-baojialiyayu:before {
    content: "\e741"
}

.icon-mengjialayu:before {
    content: "\e742"
}

.icon-alaboyu:before {
    content: "\e743"
}

.icon-zhongwen:before {
    content: "\e744"
}

.icon-keluodiyayu:before {
    content: "\e745"
}

.icon-saierweiya:before {
    content: "\e746"
}

.icon-bingdaoyu:before {
    content: "\e747"
}

.icon-QQ-copy:before {
    content: "\e6e4"
}

.icon-aliwangwang1:before {
    content: "\e6e5"
}

.icon-social-skype:before {
    content: "\e6e3"
}

.icon-aliwangwang:before {
    content: "\e76c"
}

.icon-wancheng:before {
    content: "\e6df"
}

.icon-dingdan:before {
    content: "\e6e0"
}

.icon-fukuan:before {
    content: "\e6e1"
}

.icon-fahuo:before {
    content: "\e6e2"
}

.icon-deng:before {
    content: "\e6db"
}

.icon-youqitong:before {
    content: "\e6dc"
}

.icon-fl-shuazi:before {
    content: "\e6dd"
}

.icon-qiang:before {
    content: "\e6de"
}

.icon-34:before {
    content: "\e6d8"
}

.icon-iconset0293:before {
    content: "\e6d9"
}

.icon-11:before {
    content: "\e6da"
}

.icon-meiyuan4:before {
    content: "\e736"
}

.icon-meiyuan_o:before {
    content: "\eba1"
}

.icon-yunpingtai:before {
    content: "\e674"
}

.icon-zuojiantou:before {
    content: "\e68e"
}

.icon-circle-arrow-right:before {
    content: "\e698"
}

.icon-ding:before {
    content: "\e665"
}

.icon-tuijian:before {
    content: "\e619"
}

.icon-re:before {
    content: "\e666"
}

.icon-xin:before {
    content: "\e61b"
}

.icon-qian:before {
    content: "\e6d7"
}

.icon-jingdong:before {
    content: "\e6d6"
}

.icon-baidu:before {
    content: "\e6d5"
}

.icon-tanhao2:before {
    content: "\e6d4"
}

.icon-cha:before {
    content: "\e6d3"
}

.icon-nv:before {
    content: "\e6d2"
}

.icon-xialajiantou:before {
    content: "\e6d1"
}

.icon-2:before {
    content: "\e616"
}

.icon-3:before {
    content: "\e6d0"
}

.icon-1:before {
    content: "\e617"
}

.icon-qiyeyewu:before {
    content: "\e6ca"
}

.icon-iconyewubao:before {
    content: "\e6cc"
}

.icon-yewu:before {
    content: "\e6ce"
}

.icon-heilongjiangtubiao06:before {
    content: "\e6cf"
}

.icon-kaobianxuanzegou:before {
    content: "\e6cb"
}

.icon-ok1:before {
    content: "\e6cd"
}

.icon-arrow_up:before {
    content: "\e6c8"
}

.icon-arrow_down:before {
    content: "\e6c9"
}

.icon-mailcode:before {
    content: "\e6c7"
}

.icon-wangzhi:before {
    content: "\e6c6"
}

.icon-shouqi:before {
    content: "\e6c5"
}

.icon-shuju:before {
    content: "\e6c3"
}

.icon-dashuju:before {
    content: "\e6c4"
}

.icon-fenxiang:before {
    content: "\e6c2"
}

.icon-kulian:before {
    content: "\e6c1"
}

.icon-arrowdowna:before {
    content: "\e6bf"
}

.icon-arrowupa:before {
    content: "\e6c0"
}

.icon-shipin:before {
    content: "\e6be"
}

.icon-goumai:before {
    content: "\e6bd"
}

.icon-wenhao:before {
    content: "\e6bc"
}

.icon-yaochi:before {
    content: "\e6bb"
}

.icon-duanxinzhuanhuan:before {
    content: "\e6ba"
}

.icon-dushigouwu:before {
    content: "\e6b9"
}

.icon-tianmaobao:before {
    content: "\e6b8"
}

.icon-shipin1:before {
    content: "\e6b7"
}

.icon-kefu:before {
    content: "\e6b6"
}

.icon-neutral:before {
    content: "\e6b4"
}

.icon-biaoqian:before {
    content: "\e6b3"
}

.icon-jishiben:before {
    content: "\e6b1"
}

.icon-lipin:before {
    content: "\e6ad"
}

.icon-arrowlefta:before {
    content: "\e689"
}

.icon-arrowrighta:before {
    content: "\e6ac"
}

.icon-jianhao:before {
    content: "\e6b5"
}

.icon-shixinyuanjiahao:before {
    content: "\e6b2"
}

.icon-arrows-copy:before {
    content: "\e69a"
}

.icon-chevron-copy-copy-copy-copy-copy:before {
    content: "\e69c"
}

.icon-chevron-copy-copy-copy-copy-copy-copy:before {
    content: "\e6ae"
}

.icon-chevron-copy:before {
    content: "\e687"
}

.icon-duduyinleappicon1401:before {
    content: "\e6af"
}

.icon-duduyinleappicon0501:before {
    content: "\e6b0"
}

.icon-duigou:before {
    content: "\e6ab"
}

.icon-iconfontguige:before {
    content: "\e65b"
}

.icon-iconfontanquanbaozhang1:before {
    content: "\e65c"
}

.icon-iconfontbofang:before {
    content: "\e65d"
}

.icon-iconfontbofang1:before {
    content: "\e65e"
}

.icon-iconfontplay:before {
    content: "\e65f"
}

.icon-iconfontttpodicon:before {
    content: "\e660"
}

.icon-iconfontsousuo:before {
    content: "\e661"
}

.icon-iconfontbook:before {
    content: "\e662"
}

.icon-iconfontfuwurenyuan:before {
    content: "\e663"
}

.icon-iconfontshezhichilun:before {
    content: "\e664"
}

.icon-iconfontsanxingdianhover:before {
    content: "\e667"
}

.icon-iconfontdian:before {
    content: "\e668"
}

.icon-iconfontdian1:before {
    content: "\e669"
}

.icon-iconfontxin1:before {
    content: "\e66a"
}

.icon-iconfontpingfenxingxingwaikuang1:before {
    content: "\e66b"
}

.icon-iconfontfenlei:before {
    content: "\e66c"
}

.icon-iconfontzoomin2:before {
    content: "\e66d"
}

.icon-iconfontxiaolian:before {
    content: "\e66e"
}

.icon-iconfontchuanzhendayin:before {
    content: "\e66f"
}

.icon-iconfontpullright:before {
    content: "\e670"
}

.icon-iconfontpullleft:before {
    content: "\e671"
}

.icon-iconfontcaijian:before {
    content: "\e672"
}

.icon-iconfonticonfontpingguo:before {
    content: "\e673"
}

.icon-iconfontxiazai2:before {
    content: "\e675"
}

.icon-iconfontyoujian:before {
    content: "\e676"
}

.icon-iconfontbijibendiannao:before {
    content: "\e677"
}

.icon-iconfonticonfontbrowsernew:before {
    content: "\e678"
}

.icon-iconfontliulan:before {
    content: "\e679"
}

.icon-iconfontshijian:before {
    content: "\e67a"
}

.icon-iconfontshijian1:before {
    content: "\e67b"
}

.icon-iconfonticonfontfenxiang:before {
    content: "\e67c"
}

.icon-iconfonticonziti35:before {
    content: "\e67d"
}

.icon-iconfonttengxunweibo:before {
    content: "\e67e"
}

.icon-iconfontfenxiang:before {
    content: "\e67f"
}

.icon-iconfontqzone:before {
    content: "\e680"
}

.icon-iconfontfenxiangpengyouquan:before {
    content: "\e681"
}

.icon-iconfontbbgfenxiang:before {
    content: "\e682"
}

.icon-iconfontjianhao:before {
    content: "\e683"
}

.icon-iconfonttianjiatupian:before {
    content: "\e684"
}

.icon-iconfontbiaoqianji:before {
    content: "\e685"
}

.icon-iconfontpinglunqian:before {
    content: "\e686"
}

.icon-iconfontwujiaoxing:before {
    content: "\e688"
}

.icon-iconfontshouye:before {
    content: "\e68a"
}

.icon-iconfontyinledianzan:before {
    content: "\e68b"
}

.icon-iconfontbofangjilu:before {
    content: "\e68c"
}

.icon-iconfonticonfontzhuye:before {
    content: "\e68d"
}

.icon-iconfontcircularframeliulan:before {
    content: "\e68f"
}

.icon-iconfontbiaoqianguanbi:before {
    content: "\e690"
}

.icon-iconfonticonfontpraise:before {
    content: "\e691"
}

.icon-iconfontxianshirequ1:before {
    content: "\e692"
}

.icon-iconfonticon1:before {
    content: "\e693"
}

.icon-iconfontpinglunhou:before {
    content: "\e694"
}

.icon-iconfontpinglunzu:before {
    content: "\e695"
}

.icon-iconfontqz:before {
    content: "\e696"
}

.icon-iconfontshouyehomemian:before {
    content: "\e697"
}

.icon-iconfontbofang2:before {
    content: "\e699"
}

.icon-iconfonttaobaoyin:before {
    content: "\e69b"
}

.icon-iconfontrementupian:before {
    content: "\e69d"
}

.icon-iconfontordinaryliulan:before {
    content: "\e69e"
}

.icon-iconfonticozhuce:before {
    content: "\e69f"
}

.icon-iconfontshouye1:before {
    content: "\e6a0"
}

.icon-iconfonttao:before {
    content: "\e6a1"
}

.icon-iconfontrenrenfangxing:before {
    content: "\e6a2"
}

.icon-iconfonttianjiayonghu:before {
    content: "\e6a3"
}

.icon-iconfontpiping:before {
    content: "\e6a4"
}

.icon-iconfontzanyang:before {
    content: "\e6a5"
}

.icon-iconfontyonghu:before {
    content: "\e6a6"
}

.icon-iconfontjiantou:before {
    content: "\e6a7"
}

.icon-iconfontzuojiantou:before {
    content: "\e6a8"
}

.icon-iconfontshoucangjia:before {
    content: "\e6a9"
}

.icon-iconfontbianji:before {
    content: "\e6aa"
}

.icon-iconfontdaohanggonggao:before {
    content: "\e62e"
}

.icon-iconfontshanchu:before {
    content: "\e62f"
}

.icon-iconfontditudaohang:before {
    content: "\e630"
}

.icon-iconfontmofangdaohang:before {
    content: "\e631"
}

.icon-iconfontdaohangico:before {
    content: "\e632"
}

.icon-iconfonttianjia:before {
    content: "\e633"
}

.icon-iconfontgengduo:before {
    content: "\e634"
}

.icon-iconfontzuoshangjiaotubiao:before {
    content: "\e635"
}

.icon-iconfontconnectionbars:before {
    content: "\e636"
}

.icon-iconfontwangluoxinhao:before {
    content: "\e637"
}

.icon-iconfontjinlingyingcaiwangtubiao33:before {
    content: "\e638"
}

.icon-iconfontmimarenzheng:before {
    content: "\e639"
}

.icon-iconfontrongyujiangxiang:before {
    content: "\e63a"
}

.icon-iconfonttrophy:before {
    content: "\e63b"
}

.icon-iconfontrenzheng:before {
    content: "\e63c"
}

.icon-iconfonticonfontkaohechengji:before {
    content: "\e63d"
}

.icon-iconfontrongyuzheng:before {
    content: "\e63e"
}

.icon-iconfontcuowu2:before {
    content: "\e63f"
}

.icon-iconfontcuowu:before {
    content: "\e640"
}

.icon-iconfontguanbicuowu:before {
    content: "\e641"
}

.icon-iconfontzhengquetishitianchong:before {
    content: "\e642"
}

.icon-iconfontdiannao:before {
    content: "\e643"
}

.icon-iconfontpingbandiannao:before {
    content: "\e644"
}

.icon-iconfontxuanzekuangyixuan:before {
    content: "\e645"
}

.icon-iconfontoptionbutton:before {
    content: "\e646"
}

.icon-iconfontxuanzefangfa01:before {
    content: "\e647"
}

.icon-iconfontduigou:before {
    content: "\e648"
}

.icon-iconfontshuaxin:before {
    content: "\e649"
}

.icon-iconfontrenwu:before {
    content: "\e64a"
}

.icon-iconfonticonfontweibo:before {
    content: "\e64b"
}

.icon-iconfontxinlangweibo:before {
    content: "\e64c"
}

.icon-iconfontweibo:before {
    content: "\e64d"
}

.icon-iconfontweibiaoti1:before {
    content: "\e64e"
}

.icon-iconfontweixin:before {
    content: "\e64f"
}

.icon-iconfontweixin1:before {
    content: "\e650"
}

.icon-iconfontweixin2:before {
    content: "\e651"
}

.icon-iconfontweixin3:before {
    content: "\e652"
}

.icon-iconfontqq:before {
    content: "\e653"
}

.icon-iconfontqq1:before {
    content: "\e654"
}

.icon-iconfontqq2:before {
    content: "\e655"
}

.icon-iconfontqq3:before {
    content: "\e656"
}

.icon-iconfontxiangqing:before {
    content: "\e657"
}

.icon-iconfontanquanbaozhang:before {
    content: "\e658"
}

.icon-iconfonticonpay:before {
    content: "\e659"
}

.icon-iconfontbaozhang:before {
    content: "\e65a"
}

.icon-iconfontchanpin:before {
    content: "\e624"
}

.icon-iconfontguanyuwomen:before {
    content: "\e625"
}

.icon-iconfontguanyuwomen1:before {
    content: "\e626"
}

.icon-iconfontweibiaoti2:before {
    content: "\e627"
}

.icon-iconfontdianhua:before {
    content: "\e628"
}

.icon-iconfontdianhua1:before {
    content: "\e629"
}

.icon-iconfontgengxin:before {
    content: "\e62a"
}

.icon-iconfontluxiandaohang:before {
    content: "\e62b"
}

.icon-iconfontwuxianduandaohang:before {
    content: "\e62c"
}

.icon-iconfontdaohang:before {
    content: "\e62d"
}

.icon-iconfontiocnnv2:before {
    content: "\e600"
}

.icon-iconfontiocnnan:before {
    content: "\e601"
}

.icon-iconfonttianjia1:before {
    content: "\e602"
}

.icon-iconfontquanping:before {
    content: "\e603"
}

.icon-iconfontjulichi:before {
    content: "\e604"
}

.icon-iconfontshouyezhuyetubiao07:before {
    content: "\e605"
}

.icon-iconfontwoyaofahuo:before {
    content: "\e606"
}

.icon-iconfontxiangji:before {
    content: "\e607"
}

.icon-iconfonthoudongfangiconfont01:before {
    content: "\e608"
}

.icon-iconfontrenminbi:before {
    content: "\e609"
}

.icon-iconfontjianlilaiyuanwangzhan:before {
    content: "\e60a"
}

.icon-iconfonttupian24px:before {
    content: "\e60b"
}

.icon-iconfontnan:before {
    content: "\e60c"
}

.icon-iconfontshipin:before {
    content: "\e60d"
}

.icon-iconfontchenggong:before {
    content: "\e60e"
}

.icon-iconfonticonfontrili:before {
    content: "\e60f"
}

.icon-iconfontjinyongudisable:before {
    content: "\e610"
}

.icon-iconfontgongjiao:before {
    content: "\e611"
}

.icon-iconfontcar:before {
    content: "\e612"
}

.icon-iconfontjiaotongiconwalk:before {
    content: "\e613"
}

.icon-iconfontdiqiu:before {
    content: "\e614"
}

.icon-iconfonttianjiaxin:before {
    content: "\e615"
}

.icon-iconfontxinsaoyisao:before {
    content: "\e618"
}

.icon-iconfontrepin:before {
    content: "\e61a"
}

.icon-iconfontxianshirequ:before {
    content: "\e61c"
}

.icon-iconfontfasong:before {
    content: "\e61d"
}

.icon-iconfontdaohangsanjiao:before {
    content: "\e61e"
}

.icon-iconfontdaohangtubiao:before {
    content: "\e61f"
}

.icon-iconfontmianxingtubiao1ziyuanguanli:before {
    content: "\e620"
}

.icon-iconfontxingyexinwen:before {
    content: "\e621"
}

.icon-iconfontfabuanli:before {
    content: "\e622"
}

.icon-iconfontdianxinganli:before {
    content: "\e623"
}